home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap07 / b07a010.cc2 < prev    next >
Text File  |  1998-06-07  |  2KB  |  49 lines

  1. 0, Forms are the windows your program uses 
  2. 2, to display information and solicit 
  3. 4, input. Although one form will often do the 
  4. 7, trick, most full-featured programs use 
  5. 10, several forms to present output. In Visual 
  6. 13, Basic, each new form is classified as an 
  7. 15, object and maintains its own objects, 
  8. 18, properties, and event procedures. In 
  9. 21, addition, each new form is stored in its own 
  10. 23, file, so that you can use one form in 
  11. 26, many projects. You can use a new form for 
  12. 30, a splash screen, which welcomes users 
  13. 33, to your program and displays introductory 
  14. 36, artwork or copyright information. Or, 
  15. 39, you can use a new form to display Help 
  16. 41, content, operating instructions, or useful 
  17. 44, tips about how your program works. You 
  18. 48, can also create a custom dialog box with 
  19. 50, a new form to prompt the user for input 
  20. 53, or display output in a special format. 
  21. 57, For example, you might create a custom 
  22. 58, Search dialog box that lets users search 
  23. 61, for important values. And you can use 
  24. 65, extra forms to display documents and 
  25. 67, artwork. For example, you might use a form to 
  26. 70, display enlarged bitmaps or to create a 
  27. 73, Print Preview window. You also have 
  28. 77, flexibility in how you display your forms. 
  29. 81, You can make all of the forms in a 
  30. 82, program visible at the same time or you can 
  31. 85, load and unload forms as they are needed 
  32. 88, by the application. If you want to allow 
  33. 92, the user to switch away from a form 
  34. 94, without closing it, you can open it as a 
  35. 96, nonmodal form. Nonmodal is the default 
  36. 101, setting for Visual Basic to give users 
  37. 103, flexibility in how they run their programs. 
  38. 107, A preview or Help window is a good 
  39. 109, example of a non-modal form. A modal form 
  40. 114, requires the user to make a choice before 
  41. 116, continuing with the program. Modal forms 
  42. 119, are useful for displaying messages the 
  43. 121, user might respond to before proceeding. 
  44. 124, For example, a dialog box that asks you 
  45. 126, to verify the placement of an order 
  46. 129, might well be a modal form. In this chapter, 
  47. 133, you will learn how to add modal and 
  48. 134, nonmodal forms to your application.
  49. 138, END